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.
 
 
 
 

25 lines
416 B

# Can be used as a testing environment
version: "3.7"
services:
server:
build: ./server
restart: always
ports:
- 8080:8080
environment:
AUTH_SECRET: mysecretl
networks:
- mail-proxy
client:
build: ./client
restart: always
ports:
- 80:80
environment:
API_BASE_PATH: http://localhost:8080
networks:
- mail-proxy
networks:
mail-proxy: