diff --git a/mumble/README.md b/mumble/README.md index df351a2..e8114a0 100644 --- a/mumble/README.md +++ b/mumble/README.md @@ -28,18 +28,18 @@ MUMBLE_PASS=sampleRootPassword version: '3.3' services: mumble: + image: phlak/mumble + restart: unless-stopped + container_name: mumble-server + environment: + - SUPERUSER_PASSWORD=${MUMBLE_PASS} + - TZ=America/Los_Angeles ports: - 64738:64738 - 64738:64738/udp volumes: - ./mumble-data:/etc/mumble - container_name: mumble-server - image: phlak/mumble - environment: - - SUPERUSER_PASSWORD=${MUMBLE_PASS} - - TZ=America/Los_Angeles - restart: unless-stopped - + networks: default: external: diff --git a/pureftpd/README.md b/pureftpd/README.md index e6a7f35..6146413 100644 --- a/pureftpd/README.md +++ b/pureftpd/README.md @@ -9,7 +9,7 @@ ``` ### Notes -Make sure port 521 is open on your firewall. Do not use Caddy for this. Just `docker-compose up -d` when you are done. +Make sure port 521 is open on your firewall or ufw. Do not use Caddy for this. Just `docker-compose up -d` when you are done. Connect to the ftp server with your IP:521 and the USERNAME + PASS set in .env. diff --git a/seafile/.env b/seafile/.env deleted file mode 100644 index 0ae331e..0000000 --- a/seafile/.env +++ /dev/null @@ -1,10 +0,0 @@ -# General -MY_DOMAIN=example.com -DOCKER_MY_NETWORK=caddy_net - -# Seafile Specific -MYSQL_ROOT_PASSWORD=examplepassword -SEAFILE_ADMIN_EMAIL=youremail # Specifies Seafile admin user. This is also your username -SEAFILE_ADMIN_PASSWORD=examplepass # Specifies Seafile admin password. -SEAFILE_HOSTNAME=subdomain.example.com - diff --git a/seafile/README.md b/seafile/README.md index d52fdde..7ae4e79 100644 --- a/seafile/README.md +++ b/seafile/README.md @@ -20,7 +20,6 @@ subdomain.example.com { ## .env set your environment variables -https://github.com/StarWhiz/docker_deployment_notes/blob/master/seafile/.env ``` # General MY_DOMAIN=example.com @@ -34,7 +33,6 @@ SEAFILE_HOSTNAME=subdomain.example.com ``` ## docker-compose.yml -https://github.com/StarWhiz/docker_deployment_notes/blob/master/seafile/docker-compose.yml ``` version: '2.0' services: diff --git a/seafile/docker-compose.yml b/seafile/docker-compose.yml deleted file mode 100644 index 4458cac..0000000 --- a/seafile/docker-compose.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: '2.0' -services: - seafile-db: - image: mariadb:10.1 - container_name: seafile-db - restart: unless-stopped - environment: - - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} # Requested, set the root's password of MySQL service. - - MYSQL_LOG_CONSOLE=true - volumes: - - ~/docker/seafile/seafile-mysql/db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store. - - memcached: - image: memcached:1.5.6 - container_name: seafile-memcached - restart: unless-stopped - entrypoint: memcached -m 256 - - seafile: - image: seafileltd/seafile-mc:latest - container_name: seafile - restart: unless-stopped - volumes: - - ~/docker/seafile/seafile-data:/shared # Requested, specifies the path to Seafile data persistent store. - environment: - - DB_HOST=seafile-db - - DB_ROOT_PASSWD=${MYSQL_ROOT_PASSWORD} # Requested, the value shuold be root's password of MySQL service. - - TIME_ZONE=Etc/UTC # Optional, default is UTC. Should be uncomment and set to your local time zone. - - SEAFILE_ADMIN_EMAIL=${SEAFILE_ADMIN_EMAIL} # Specifies Seafile admin user, default is 'me@example.com'. - - SEAFILE_ADMIN_PASSWORD=${SEAFILE_ADMIN_PASSWORD} # Specifies Seafile admin password, default is 'asecret'. - - SEAFILE_SERVER_LETSENCRYPT=false # Whether to use https or not. - - SEAFILE_SERVER_HOSTNAME=${SEAFILE_HOSTNAME} # Specifies your host name if https is enabled. - depends_on: - - seafile-db - - memcached - -networks: - default: - external: - name: caddy_net diff --git a/wordpress/README.md b/wordpress/README.md index e3cb3d3..6a9341e 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -95,15 +95,15 @@ Simple... Just repeat with the following changes. Below is an example for a new ├── uploads.ini ``` First you duplicate .env and uploads.ini inside the new directory wordpress2, but then you modify the docker-compose.yml. -Modify 3 areas in docker-compose.yml from "wordpress" to "wordpress2" +Modify 5 areas in docker-compose.yml from "wordpress" to "wordpress2" ``` - wordpress: + wordpress2: ... container_name: wordpress2 environment: WORDPRESS_DB_HOST: wordpress2-db ... - wordpress-db: + wordpress2-db: ... container_name: wordpress2-db ...