1
0
Fork 0
Docker Compose files for Thulium
Go to file
Jonathan Chan 99e23dfd49 Remove syncthing 2025-02-23 17:16:37 +01:00
freshrss Add FreshRSS (replace TTRSS). 2021-10-23 07:23:40 +02:00
gitea Update explicit Forgejo version 2025-01-13 03:09:25 +01:00
nextcloud Give name to default nextcloud network 2025-02-23 17:16:26 +01:00
.gitignore Remove syncthing 2025-02-23 17:16:37 +01:00
README.md Create README.md 2019-06-14 23:07:53 -07:00

README.md

Template

version: "3"

services:
  example:
    image: author/example:tag
    container_name: example
    restart: always
    environment:
      - ENV_VAR=value
    ports:
      - 8000:80
    volumes:
      - /unnamed/volume/will/be/created
      - myvolume:/var/www/html
      - /srv/data/host/location:/srv/data
    networks:
      - mynetwork
    depends_on:
      - db
  db:
    image: postgres
    container_name: example-db
    restart: always
    expose:
      - 5432
    volumes:
      - example-db:/var/lib/postgresql/9.3./main
      
networks:
  mynetwork:

volumes:
  myvolume:
  example-db: