mirror of
https://github.com/offen/website.git
synced 2024-11-23 01:20:29 +01:00
17 lines
251 B
YAML
17 lines
251 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
proxy:
|
||
|
build:
|
||
|
context: './..'
|
||
|
dockerfile: build/proxy/Dockerfile
|
||
|
ports:
|
||
|
- 3000:80
|
||
|
depends_on:
|
||
|
- server
|
||
|
|
||
|
server:
|
||
|
build:
|
||
|
context: './..'
|
||
|
dockerfile: build/server/Dockerfile
|