diff options
author | Frederick Muriuki Muriithi | 2025-02-20 04:33:22 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-02-20 06:13:33 -0600 |
commit | 5ddadff51d560da91c2ac5a4a12b2559392cadf6 (patch) | |
tree | 0f849454207db7216c6ff4e66e91541dc01621ee /production.scm | |
parent | 596d58d10439f31b5b3f8f6d683849c22f02de53 (diff) | |
download | gn-machines-5ddadff51d560da91c2ac5a4a12b2559392cadf6.tar.gz |
Remove 'mysql-service-type' service from 'production' container.
We connect to a MariaDB database outside the container, therefore, the
container does not need to run a database server. This commit removes
the service from the container.
Diffstat (limited to 'production.scm')
-rw-r--r-- | production.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/production.scm b/production.scm index a8324c3..9e629f0 100644 --- a/production.scm +++ b/production.scm @@ -44,10 +44,7 @@ "@include " %sudoers-specification "\nacme ALL = NOPASSWD: " (file-append shepherd "/bin/herd") " restart nginx\n")) (packages %base-packages) - (services (cons* (service mysql-service-type - (mysql-configuration - (auto-upgrade? #f))) - (service virtuoso-service-type + (services (cons* (service virtuoso-service-type (virtuoso-configuration (server-port 9892) (http-server-port 9893) |