Files
0xb00b5-packmate/docker-compose.yml
2019-11-18 13:00:13 +03:00

26 lines
426 B
YAML

version: "3.4"
services:
packmate:
container_name: packmate-app
build:
context: .
dockerfile: Dockerfile_app
network: host
image: packmate-app:v1
ports:
- "65000:65000"
links:
- db
depends_on:
- db
restart: always
db:
container_name: packmate-db
build:
context: .
dockerfile: Dockerfile_db
image: packmate-db:v1
restart: always