You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
379 B

services:
app:
container_name: wiki
restart: unless-stopped
build:
context: .
dockerfile: ./dev/build/Dockerfile
environment:
DB_TYPE: postgres
DB_HOST: localhost
DB_PORT: 5432
DB_USER: wiki
DB_PASS: wiki
DB_NAME: wiki
ports:
- "80:3000"
networks:
- wiki
networks:
wiki:
external: true