Compare commits

...

2 Commits

Author SHA1 Message Date
ff3a74733b use domain
Some checks failed
ci / build (push) Failing after 1s
ci / Tests & Checks (push) Failing after 1s
2025-07-14 13:13:31 -08:00
3eaa83d0df use stack 2025-07-14 13:13:23 -08:00
2 changed files with 25 additions and 25 deletions

View File

@ -1,14 +1,4 @@
:80 future.porn:80
## reverse_proxy /api/* nocodb:8080
## reverse_proxy /download/* nocodb:8080
## twitch mock api server
reverse_proxy /mock/* 172.17.0.1:8080
## fastify server ## fastify server
reverse_proxy 172.17.0.1:3000 reverse_proxy our:5000
## file_server
## root * /srv

View File

@ -2,14 +2,16 @@
services: services:
# caddy: caddy:
# image: caddy:alpine image: caddy:alpine
# ports: ports:
# - "8081:80" - "80:80"
# volumes: - "443:443"
# - ./public:/srv volumes:
# - ./Caddyfile:/etc/caddy/Caddyfile - ./public:/srv
- ./Caddyfile:/etc/caddy/Caddyfile
networks:
- our
postgres: postgres:
container_name: our-postgres container_name: our-postgres
@ -29,6 +31,8 @@ services:
retries: 5 retries: 5
start_period: 10s start_period: 10s
timeout: 10s timeout: 10s
networks:
- our
pgadmin: pgadmin:
image: dpage/pgadmin4:latest image: dpage/pgadmin4:latest
@ -39,18 +43,24 @@ services:
PGADMIN_DISABLE_POSTFIX: true PGADMIN_DISABLE_POSTFIX: true
ports: ports:
- "5050:5050" - "5050:5050"
networks:
- our
our: our:
build: image: gitea.futureporn.net/futureporn/our:latest
context: .
dockerfile: Dockerfile
container_name: our-app container_name: our-app
ports: ports:
- "5000:5000" - "5000:5000"
env_file: .env.production ## @see ./src/config/env.ts for all env var names. env_file: .env.production ## @see ./src/config/env.ts for all env var names.
depends_on: depends_on:
- postgres postgres:
condition: service_healthy
network:
- our
volumes: volumes:
pgdata: pgdata:
networks:
our: