This guide describes how to prepare your server for the installation of AtroCore Application. Please make sure your user
can use sudo
command.
Our docker-compose stack comes with a preconfigured Traefik and Let's Encrypt SSL certificate provider. You need just to set some configuration variables to have a ready to work system.
To install Docker, your server must meet prerequisites (check official docs). Usually, a server with the fresh installation of Ubuntu 20.04 (and newer) should work well.
To be sure your system does not have any conflicting packages, you need to uninstall them using the next command:
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done
In this guide we will set up apt repository to install Docker Engine. If you need more details, please follow official instructions.
Lets setup Docker's apt repository:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
And install the latest version of Docker:
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
To check if everything works well, you can start hello-world
container:
sudo docker run hello-world
Configuration is hosted on our GitLab repository: https://gitlab.atrocore.com/atrocore/docker
You can choose any directory your user have access. You can use git
to clone repository locally:
git clone https://gitlab.atrocore.com/atrocore/docker.git <my-atrocore-project>
<my-atrocore-project> is your project name
Or, you can download a zip archive from repository and unpack it into a suitable directory if you don't want to use
git
.
Our Docker Compose stack come with preconfigured Traefik and enabled by default Let's Encrypt SSL certificate provider.
If you already have Traefik on your server, delete services
section from the docker-compose.override.yaml
file.
If you need to disable SSL, you should perform the following steps:
Remove these SSL labels from web
service in docker-compose-override.yaml
:
# Enable SSL for main AtroPIM instance
- "traefik.http.routers.${PROXY_PRODUCTION_ROUTER}.tls=true"
- "traefik.http.routers.${PROXY_PRODUCTION_ROUTER}.tls.certresolver=letencrypt"
....
# Enable SSL for testing AtroPIM instance
- "traefik.http.routers.${PROXY_TESTING_ROUTER}.tls=true"
- "traefik.http.routers.${PROXY_TESTING_ROUTER}.tls.certresolver=letencrypt"
Replace websecure
with web
in labels of web
service in docker-compose-override.yaml
:
- "traefik.http.routers.${PROXY_PRODUCTION_ROUTER}.entrypoints=websecure" # Replace 'websecure' with 'web' if you don't need SSL
....
- "traefik.http.routers.${PROXY_TESTING_ROUTER}.entrypoints=websecure" # Replace 'websecure' with 'web' if you don't need SSL
Remove Let's Encrypt init command from reverse-proxy
service in docker-compose-override.yaml
:
# Remove if you don't need SSL from Lets Encrypt
command:
- --certificatesResolvers.letencrypt.acme.email=${LETS_ENCRYPT_EMAIL}
Remove 443 port exposure from reverse-proxy
service in docker-compose-override.yaml
:
ports:
- "80:80"
# Remove if you don't need SSL
- "443:443"
Remove http to https redirect and Let's Encrypt certificate resolver from traefik.yml
:
# Comment section below if you don't need an SSL or you want to disable automatic redirect to HTTPS
http:
redirections:
entryPoint:
to: websecure
scheme: https
.....
# Remove if you don't need Lets Encrypt SSL
certificatesResolvers:
letencrypt:
acme:
storage: /certs/acme.json
caServer: https://acme-v02.api.letsencrypt.org/directory
httpChallenge:
entryPoint: web
Create your own environment configuration from example:
cp .env.example .env
Following variables in .env
file are required to have a working AtroPIM instance:
SKELETON_VARIANT
(pim-no-demo
, pim
, atrocore
are allowed variants). Default is pim-no-demo
PRODUCTION_DOMAIN
— domain of your main AtroPIM instancePRODUCTION_STABILITY
(stable
, rc
) — stability branch of your AtroPIM instance. Default value is stable
POSTGRES_PASSWORD
— password of the postgres
user of database, should not be used to install AtroPIMPOSTGRES_PIM_USER
, POSTGRES_PIM_PASSWORD
, and POSTGRES_PIM_DB
— database credentials (user, password, DB name)
used to install production AtroPIM instance.If you need to have a testing AtroPIM instance, define the next environmental variables:
TESTING_DOMAIN
, TESTING_STABILITY
— the same meaning as PRODUCTION_DOMAIN
, PRODUCTION_STABILITY
, but it's for
testing instancePOSTGRES_PIM_USER
, POSTGRES_PIM_PASSWORD
, and POSTGRES_PIM_DB
— database credentials (user, password, DB name)
used to install testing AtroPIM instance.If you decide to use our Traefik service, you need to set the next variables:
PROXY_PRODUCTION_ROUTER
– identifier of Traefik router for main AtroPIM instance. Do not use dots in the valuePROXY_TESTING_ROUTER
– the same meaning as PROXY_PRODUCTION_ROUTER
, but for testing instanceLETS_ENCRYPT_EMAIL
– your email, required by Lets Encrypt (if you decide to use their SSL certificate)Please note that
PROXY_PRODUCTION_ROUTER
andPROXY_TESTING_ROUTER
should be unique if you have multiple copies of current docker-compose environment on the same server, or you have your own configured Traefik instance.
After all configurations, start your containers with command:
sudo docker compose up -d
You will need to wait until build process for web
container is finished. When all container are up and running, open
your AtroPIM in browser and finish the WEB installation. Make sure that you've selected PostgreSQL database
on Database configuration
step.
db
as a database host on the Database Configuration
page..docker/postgres/scripts
directory. Find more information in the postgres docs in the Initialization scripts
section..env
file you need to rebuild your web
container: docker compose build web --no-cache
.
Then you should delete your containers (docker compose down
) and recreate them with a new version of image (
docker compose up -d
).entryPoints.web.http.redirections
configuration in traefik.yml
file. Don't forget to restart Traefik container.docker-compose-override.yaml
file inside volumes:
section:
# Uncomment if you want to store AtroCore and DB files in data/ folder
volumes:
web-data:
driver: local
driver_opts:
type: none
o: bind
device: ./data/web/
db-data:
driver: local
driver_opts:
type: none
o: bind
device: ./data/db/