mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-08-23 13:02:23 +00:00
Füge Konfigurationsdateien für Semaphore hinzu und aktualisiere PostGIS-Umgebungsvariablen
This commit is contained in:
parent
ab4c646cc7
commit
05e8212947
2
.gitignore
vendored
2
.gitignore
vendored
@ -79,3 +79,5 @@ postgis/data/
|
||||
backrest/backrest/
|
||||
backrest/backup/
|
||||
backrest/repos/
|
||||
semaphore/semaphore_config/config.json
|
||||
semaphore/semaphore_data/database.boltdb
|
||||
|
@ -14,6 +14,8 @@ services:
|
||||
environment:
|
||||
POSTGRES_USER: test
|
||||
POSTGRES_PASSWORD: changeme
|
||||
TZ: "Europe/Vienna"
|
||||
PGTZ: "Europe/Vienna"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
|
28
semaphore/compose.yml
Normal file
28
semaphore/compose.yml
Normal file
@ -0,0 +1,28 @@
|
||||
#
|
||||
|
||||
#
|
||||
|
||||
name: semaphore
|
||||
|
||||
services:
|
||||
semaphore:
|
||||
container_name: semaphore
|
||||
ports:
|
||||
- 3000:3000
|
||||
image: public.ecr.aws/semaphore/pro/server:v2.15.2
|
||||
environment:
|
||||
SEMAPHORE_DB_DIALECT: bolt
|
||||
SEMAPHORE_ADMIN: admin
|
||||
SEMAPHORE_ADMIN_PASSWORD: changeme
|
||||
SEMAPHORE_ADMIN_NAME: Admin
|
||||
SEMAPHORE_ADMIN_EMAIL: admin@localhost
|
||||
volumes:
|
||||
- ./semaphore_data:/var/lib/semaphore
|
||||
- ./semaphore_config:/etc/semaphore
|
||||
- ./semaphore_tmp:/tmp/semaphore
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
Loading…
x
Reference in New Issue
Block a user