36 lines
661 B
YAML
36 lines
661 B
YAML
services:
|
|
nginx:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: always
|
|
volumes:
|
|
- /etc/letsencrypt:/etc/letsencrypt:ro
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
depends_on:
|
|
- psitrail_frontend
|
|
networks:
|
|
- public
|
|
|
|
psitrail_frontend:
|
|
container_name: psitrail_frontend
|
|
image: gitea.psi.ch/bb_if_produktiv/psitrail-2.0:latest
|
|
restart: always
|
|
expose:
|
|
- "4200"
|
|
networks:
|
|
- public
|
|
|
|
pocket:
|
|
container_name: pocket_frontend
|
|
image: gitea.psi.ch/bb_if_produktiv/psiapp:dev
|
|
restart: always
|
|
expose:
|
|
- "4200"
|
|
networks:
|
|
- public
|
|
|
|
networks:
|
|
public: |