this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 28 lines 587 B view raw
1services: 2 soft-serve: 3 image: charmcli/soft-serve:latest 4 container_name: soft-serve 5 volumes: 6 - /media/external-hd-backup/soft-serve/data:/soft-serve 7 ports: 8 - 23231:23231 9 - 9418:9418 10 environment: 11 SOFT_SERVE_INITIAL_ADMIN_KEYS: /run/secrets/admin_key 12 restart: unless-stopped 13 networks: 14 - soft-serve-network 15 labels: 16 glance.name: Soft Serve 17 glance.icon: si:git 18 secrets: 19 - admin_key 20 21networks: 22 soft-serve-network: 23 name: proxy-network 24 external: true 25 26secrets: 27 admin_key: 28 file: ./admin_key.txt