rails new -n a11yist -d sqlite3 --skip-action-mailbox --css bootstrap --js esbuild .

This commit is contained in:
David Schärer 2024-07-15 02:19:27 +02:00
commit 535a051755
91 changed files with 2469 additions and 0 deletions

30
docker-compose.yml Normal file
View file

@ -0,0 +1,30 @@
# This is available in $COMPOSE_PROJECT_NAME
name: a11yist
networks:
traefik:
external: true
services:
app: &app
build: .
volumes:
- ./:/app:cached
environment:
RAILS_ENV: development
LOG_LEVEL: debug
TRUSTED_IP: 172.16.0.0/12,192.168.0.0/16,10.0.0.0/24
SSH_AUTH_SOCK: /ssh-agent
RAILS_SERVE_STATIC_FILES: 1
APP_HOST: ${COMPOSE_PROJECT_NAME}.localhost
HISTFILE: /app/tmp/.bash_history
PSQL_HISTORY: /app/tmp/.psql_history
IRBRC: /app/.irbrc
labels:
- traefik.http.routers.app-${COMPOSE_PROJECT_NAME}.entrypoints=http
- traefik.http.routers.app-${COMPOSE_PROJECT_NAME}.rule=Host(`${COMPOSE_PROJECT_NAME}.localhost`)
- traefik.http.services.app-${COMPOSE_PROJECT_NAME}.loadbalancer.server.port=3000
- traefik.docker.network=traefik
networks:
- traefik
- default